home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / dwsock13 / error.inc < prev    next >
Text File  |  1996-04-08  |  3KB  |  56 lines

  1. function Error(e : integer) : String;
  2. begin
  3.     Case e of
  4.          WSAEINTR           : Result := 'WSAEINTR';
  5.          WSAEBADF           : Result := 'WSAEINTR';
  6.      WSAEFAULT          : Result := 'WSAEFAULT';
  7.      WSAEINVAL          : Result := 'WSAEINVAL';
  8.      WSAEMFILE          : Result := 'WSAEMFILE';
  9.      WSAEWOULDBLOCK     : Result := 'WSAEWOULDBLOCK';
  10.      WSAEINPROGRESS     : Result := 'WSAEINPROGRESS';
  11.      WSAEALREADY        : Result := 'WSAEALREADY';
  12.      WSAENOTSOCK        : Result := 'WSAENOTSOCK';
  13.      WSAEDESTADDRREQ    : Result := 'WSAEDESTADDRREQ';
  14.      WSAEMSGSIZE        : Result := 'WSAEMSGSIZE';
  15.      WSAEPROTOTYPE      : Result := 'WSAEPROTOTYPE';
  16.      WSAENOPROTOOPT     : Result := 'WSAENOPROTOOPT';
  17.      WSAEPROTONOSUPPORT : Result := 'WSAEPROTONOSUPPORT';
  18.      WSAESOCKTNOSUPPORT : Result := 'WSAESOCKTNOSUPPORT';
  19.      WSAEOPNOTSUPP      : Result := 'WSAEOPNOTSUPP';
  20.      WSAEPFNOSUPPORT    : Result := 'WSAEPFNOSUPPORT';
  21.      WSAEAFNOSUPPORT    : Result := 'WSAEAFNOSUPPORT';
  22.      WSAEADDRINUSE      : Result := 'WSAEADDRINUSE';
  23.      WSAEADDRNOTAVAIL   : Result := 'WSAEADDRNOTAVAIL';
  24.      WSAENETDOWN        : Result := 'WSAENETDOWN';
  25.      WSAENETUNREACH     : Result := 'WSAENETUNREACH';
  26.      WSAENETRESET       : Result := 'WSAENETRESET';
  27.      WSAECONNABORTED    : Result := 'WSAECONNABORTED';
  28.      WSAECONNRESET      : Result := 'WSAECONNRESET';
  29.      WSAENOBUFS         : Result := 'WSAENOBUFS';
  30.      WSAEISCONN         : Result := 'WSAEISCONN';
  31.      WSAENOTCONN        : Result := 'WSAENOTCONN';
  32.      WSAESHUTDOWN       : Result := 'WSAESHUTDOWN';
  33.      WSAETOOMANYREFS    : Result := 'WSAETOOMANYREFS';
  34.      WSAETIMEDOUT       : Result := 'WSAETIMEDOUT';
  35.      WSAECONNREFUSED    : Result := 'WSAECONNREFUSED';
  36.          WSAELOOP           : Result := 'WSAELOOP';
  37.      WSAENAMETOOLONG    : Result := 'WSAENAMETOOLONG';
  38.      WSAEHOSTDOWN       : Result := 'WSAEHOSTDOWN';
  39.      WSAEHOSTUNREACH    : Result := 'WSAEHOSTUNREACH';
  40.      WSAENOTEMPTY       : Result := 'WSAENOTEMPTY';
  41.      WSAEPROCLIM        : Result := 'WSAEPROCLIM';
  42.      WSAEUSERS          : Result := 'WSAEUSERS';
  43.      WSAEDQUOT          : Result := 'WSAEDQUOT';
  44.      WSAESTALE          : Result := 'WSAESTALE';
  45.      WSAEREMOTE         : Result := 'WSAEREMOTE';
  46.      WSASYSNOTREADY     : Result := 'WSASYSNOTREADY';
  47.      WSAVERNOTSUPPORTED : Result := 'WSAVERNOTSUPPORTED';
  48.      WSANOTINITIALISED  : Result := 'WSANOTINITIALISED';
  49.      WSAHOST_NOT_FOUND  : Result := 'WSAHOST_NOT_FOUND';
  50.      WSATRY_AGAIN       : Result := 'WSATRY_AGAIN';
  51.      WSANO_RECOVERY     : Result := 'WSANO_RECOVERY';
  52.      WSANO_DATA         : Result := 'WSANO_DATA';
  53.     end;
  54. end;
  55.  
  56.